func net.newDNSError

27 uses

	net (current package)
		cgo_unix.go#L140: 			return 0, newDNSError(err, network+"/"+service, "")
		cgo_unix.go#L142: 			return 0, newDNSError(errUnknownPort, network+"/"+service, "")
		cgo_unix.go#L144: 			return 0, newDNSError(addrinfoErrno(gerrno), network+"/"+service, "")
		cgo_unix.go#L161: 	return 0, newDNSError(errUnknownPort, network+"/"+service, "")
		cgo_unix.go#L195: 			return nil, newDNSError(err, name, "")
		cgo_unix.go#L197: 			return nil, newDNSError(errNoSuchHost, name, "")
		cgo_unix.go#L199: 			return nil, newDNSError(addrinfoErrno(gerrno), name, "")
		cgo_unix.go#L274: 			return nil, newDNSError(err, addr, "")
		cgo_unix.go#L276: 			return nil, newDNSError(errNoSuchHost, addr, "")
		cgo_unix.go#L278: 			return nil, newDNSError(addrinfoErrno(gerrno), addr, "")
		dnsclient_unix.go#L317: 				dnsErr := newDNSError(err, name, server)
		dnsclient_unix.go#L331: 					return p, server, newDNSError(errNoSuchHost, name, server)
		dnsclient_unix.go#L333: 				lastErr = newDNSError(err, name, server)
		dnsclient_unix.go#L341: 					return p, server, newDNSError(errNoSuchHost, name, server)
		dnsclient_unix.go#L343: 				lastErr = newDNSError(err, name, server)
		dnsclient_unix.go#L447: 		return dnsmessage.Parser{}, "", newDNSError(errNoSuchHost, name, "")
		dnsclient_unix.go#L575: 			return nil, newDNSError(errNoSuchHost, name, "")
		dnsclient_unix.go#L625: 			return nil, dnsmessage.Name{}, newDNSError(errNoSuchHost, name, "")
		dnsclient_unix.go#L631: 		return nil, dnsmessage.Name{}, newDNSError(errNoSuchHost, name, "")
		dnsclient_unix.go#L836: 			return nil, newDNSError(errNoSuchHost, addr, "")
		lookup.go#L108: 		return 0, newDNSError(errUnknownPort, errNetwork+"/"+service, "")
		lookup.go#L195: 		return nil, newDNSError(errNoSuchHost, host, "")
		lookup.go#L239: 		return nil, newDNSError(errNoSuchHost, host, "")
		lookup.go#L307: 		return nil, newDNSError(errNoSuchHost, host, "")
		lookup.go#L357: 		err := newDNSError(mapErr(ctx.Err()), host, "")
		lookup.go#L368: 				err = newDNSError(mapErr(err), host, "")
		net.go#L674: func newDNSError(err error, name, server string) *DNSError {